home *** CD-ROM | disk | FTP | other *** search
/ Clickx 115 / Clickx 115.iso / software / tools / windows / tails-i386-0.16.iso / live / filesystem.squashfs / var / lib / dpkg / info / anthy.postrm < prev    next >
Encoding:
Text File  |  2010-05-23  |  1.3 KB  |  51 lines

  1. #! /bin/sh
  2. # postrm script for riece
  3. #
  4. # see: dh_installdeb(1)
  5.  
  6. set -e
  7.  
  8. # summary of how this script can be called:
  9. #        * <postrm> `remove'
  10. #        * <postrm> `purge'
  11. #        * <old-postrm> `upgrade' <new-version>
  12. #        * <new-postrm> `failed-upgrade' <old-version>
  13. #        * <new-postrm> `abort-install'
  14. #        * <new-postrm> `abort-install' <old-version>
  15. #        * <new-postrm> `abort-upgrade' <old-version>
  16. #        * <disappearer's-postrm> `disappear' <r>overwrit>r> <new-version>
  17. # for details, see http://www.debian.org/doc/debian-policy/ or
  18. # the debian-policy package
  19.  
  20.  
  21. case "$1" in
  22.        purge|remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
  23.         if [ "$1" = purge -a -e /usr/share/debconf/confmodule ]; then
  24.             . /usr/share/debconf/confmodule
  25.             db_purge
  26.             rm -rf /var/lib/anthy
  27.             rm -rf /var/cache/anthy
  28.         rm -f /etc/anthy/diclist
  29.         rm -f /etc/anthy/dict.args
  30.         fi
  31.         ;;
  32.  
  33.     *)
  34.         echo "postrm called with unknown argument \`$1'" >&2
  35.         exit 1
  36.  
  37. esac
  38.  
  39. # dh_installdeb will replace this with shell code automatically
  40. # generated by other debhelper scripts.
  41.  
  42. # Automatically added by dh_installdebconf
  43. if [ "$1" = purge ] && [ -e /usr/share/debconf/confmodule ]; then
  44.     . /usr/share/debconf/confmodule
  45.     db_purge
  46. fi
  47. # End automatically added section
  48.  
  49.  
  50. exit 0
  51.